from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

83367

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-02-18
awscli - 1.44.41
Ebuild name:

app-admin/awscli-1.44.41

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-18

bdf2sfd - 1.2.0
Ebuild name:

media-fonts/bdf2sfd-1.2.0

Description

BDF to SFD converter, allowing to vectorize bitmap fonts

Added to portage

2026-02-18

boto3 - 1.42.51
Ebuild name:

dev-python/boto3-1.42.51

Description

The AWS SDK for Python

Added to portage

2026-02-18

botocore - 1.42.51
Ebuild name:

dev-python/botocore-1.42.51

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-18

closure-compiler-bin - 20260211
Ebuild name:

dev-lang/closure-compiler-bin-20260211

Description

JavaScript optimizing compiler

Added to portage

2026-02-18

coq - 9.1.1
Ebuild name:

sci-mathematics/coq-9.1.1

Description

Coq/Rocq is a proof assistant written in O'Caml

Added to portage

2026-02-18

coq-stdlib - 9.1.0
Ebuild name:

sci-mathematics/coq-stdlib-9.1.0

Description

Stdlib for the Coq/Rocq Prover, used to be part of Coq

Added to portage

2026-02-18

dotnet-script - 2.0.0
Ebuild name:

dev-dotnet/dotnet-script-2.0.0

Description

Run C scripts from the CLI

Added to portage

2026-02-18

dulwich - 1.1.0
Ebuild name:

dev-python/dulwich-1.1.0

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-02-18

fish - 4.5.0
Ebuild name:

app-shells/fish-4.5.0

Description

Friendly Interactive SHell

Added to portage

2026-02-18

icalendar - 7.0.1
Ebuild name:

dev-python/icalendar-7.0.1

Description

RFC 5545 compatible parser and generator of iCalendar files

Added to portage

2026-02-18

inline-snapshot - 0.32.1
Ebuild name:

dev-python/inline-snapshot-0.32.1

Description

Create and update inline snapshots in your Python tests

Added to portage

2026-02-18

jsonschema-path - 0.4.0_beta8
Ebuild name:

dev-python/jsonschema-path-0.4.0_beta8

Description

JSONSchema Spec with object-oriented paths

Added to portage

2026-02-18

librt - 0.8.1
Ebuild name:

dev-python/librt-0.8.1

Description

Mypyc runtime library

Added to portage

2026-02-18

marksman - 2026.02.08
Ebuild name:

dev-util/marksman-2026.02.08

Description

LSP language server for editing Markdown files

Added to portage

2026-02-18

nim-mode - 0.4.2_p20231101
Ebuild name:

app-emacs/nim-mode-0.4.2_p20231101

Description

Emacs major mode for the Nim programming language support

Added to portage

2026-02-18

ninja-mode - 1.11.1-r2
Ebuild name:

app-emacs/ninja-mode-1.11.1-r2

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-18

nvidia-drivers - 580.94.18
Ebuild name:

x11-drivers/nvidia-drivers-580.94.18

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-02-18

openapi-core - 0.23.0_beta1
Ebuild name:

dev-python/openapi-core-0.23.0_beta1

Description

Client-side and server-side support for the OpenAPI Specificat

Added to portage

2026-02-18

openapi-spec-validator - 0.8.0_beta3
Ebuild name:

dev-python/openapi-spec-validator-0.8.0_beta3

Description

OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0 spec valida

Added to portage

2026-02-18

openjdk-bin - 26_beta35
Ebuild name:

dev-java/openjdk-bin-26_beta35

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-02-18

openjdk-bin - 27_alpha9
Ebuild name:

dev-java/openjdk-bin-27_alpha9

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-02-18

openstacksdk - 4.10.0
Ebuild name:

dev-python/openstacksdk-4.10.0

Description

A collection of libraries for building applications to work with Ope

Added to portage

2026-02-18

osc-lib - 4.4.0
Ebuild name:

dev-python/osc-lib-4.4.0

Description

A package of common support modules for writing OSC plugins

Added to portage

2026-02-18

oslo-config - 10.3.0
Ebuild name:

dev-python/oslo-config-10.3.0

Description

Oslo Configuration API

Added to portage

2026-02-18

oslo-context - 6.3.0
Ebuild name:

dev-python/oslo-context-6.3.0

Description

Helpers to maintain useful information about a request context

Added to portage

2026-02-18

oslo-i18n - 6.7.2
Ebuild name:

dev-python/oslo-i18n-6.7.2

Description

Oslo i18n library

Added to portage

2026-02-18

oslo-serialization - 5.9.1
Ebuild name:

dev-python/oslo-serialization-5.9.1

Description

Oslo Serialization library

Added to portage

2026-02-18

poco - 1.15.0
Ebuild name:

dev-libs/poco-1.15.0

Description

C++ libraries for building network-based applications

Added to portage

2026-02-18

posh-z - 1.1.15
Ebuild name:

app-shells/posh-z-1.1.15

Description

Quickly navigate the file system based on your cd history

Added to portage

2026-02-18

pypdf - 6.7.1
Ebuild name:

dev-python/pypdf-6.7.1

Description

Python library to work with PDF files

Added to portage

2026-02-18

pytest-env - 1.5.0
Ebuild name:

dev-python/pytest-env-1.5.0

Description

pytest plugin that allows you to add environment variables

Added to portage

2026-02-18

python-openstackclient - 9.0.0
Ebuild name:

dev-python/python-openstackclient-9.0.0

Description

A client for the OpenStack APIs

Added to portage

2026-02-18

rsyslog - 8.2512.0-r1
Ebuild name:

app-admin/rsyslog-8.2512.0-r1

Description

An enhanced multi-threaded syslogd with database support and more

Added to portage

2026-02-18

rsyslog - 8.2602.0
Ebuild name:

app-admin/rsyslog-8.2602.0

Description

An enhanced multi-threaded syslogd with database support and more

Added to portage

2026-02-18

ruff - 0.15.1
Ebuild name:

dev-util/ruff-0.15.1

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-02-18

sourcegit - 2026.04
Ebuild name:

dev-vcs/sourcegit-2026.04

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2026-02-18

tangram - 3.5
Ebuild name:

www-client/tangram-3.5

Description

Web browser designed to organize and run Web applications

Added to portage

2026-02-18

testtools - 2.8.3
Ebuild name:

dev-python/testtools-2.8.3

Description

Extensions to the Python standard library unit testing framework

Added to portage

2026-02-18

texinfo - 7.2.92
Ebuild name:

sys-apps/texinfo-7.2.92

Description

The GNU info program and utilities

Added to portage

2026-02-18

tox - 4.38.0
Ebuild name:

dev-python/tox-4.38.0

Description

virtualenv-based automation of test activities

Added to portage

2026-02-18

translate-toolkit - 3.19.1
Ebuild name:

dev-python/translate-toolkit-3.19.1

Description

Toolkit to convert between many translation formats

Added to portage

2026-02-18

ttl - 0.18.0
Ebuild name:

net-analyzer/ttl-0.18.0

Description

Modern traceroute/mtr-style TUI with hop stats and optional ASN/geo enrichm

Added to portage

2026-02-18

uv - 0.10.4
Ebuild name:

dev-python/uv-0.10.4

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-02-18

uv-build - 0.10.4
Ebuild name:

dev-python/uv-build-0.10.4

Description

PEP517 uv build backend

Added to portage

2026-02-18

2026-02-17
apache-arrow - 23.0.1
Ebuild name:

dev-libs/apache-arrow-23.0.1

Description

A cross-language development platform for in-memory data

Added to portage

2026-02-17

awscli - 1.44.40
Ebuild name:

app-admin/awscli-1.44.40

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-17

backrefs - 6.2
Ebuild name:

dev-python/backrefs-6.2

Description

Wrapper around re or regex that adds additional back references

Added to portage

2026-02-17

boto3 - 1.42.50
Ebuild name:

dev-python/boto3-1.42.50

Description

The AWS SDK for Python

Added to portage

2026-02-17

botocore - 1.42.50
Ebuild name:

dev-python/botocore-1.42.50

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-17

deno-bin - 2.6.10
Ebuild name:

dev-lang/deno-bin-2.6.10

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-02-17

deskflow - 1.26.0
Ebuild name:

gui-apps/deskflow-1.26.0

Description

Share a mouse and keyboard between computers (FOSS version of Synergy)

Added to portage

2026-02-17

dist-kernel - 6.12.73
Ebuild name:

virtual/dist-kernel-6.12.73

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-17

dist-kernel - 6.18.12
Ebuild name:

virtual/dist-kernel-6.18.12

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-17

dist-kernel - 6.19.2
Ebuild name:

virtual/dist-kernel-6.19.2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-17

dist-kernel - 6.6.126
Ebuild name:

virtual/dist-kernel-6.6.126

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-17

doge - 3.9.1
Ebuild name:

games-misc/doge-3.9.1

Description

wow very terminal doge

Added to portage

2026-02-17

dune - 3.21.1-r1
Ebuild name:

dev-ml/dune-3.21.1-r1

Description

A composable build system for OCaml

Added to portage

2026-02-17

dune-build-info - 3.19.1-r1
Ebuild name:

dev-ml/dune-build-info-3.19.1-r1

Description

Embed locations informations inside executable and libraries

Added to portage

2026-02-17

dune-build-info - 3.21.1
Ebuild name:

dev-ml/dune-build-info-3.21.1

Description

Embed locations informations inside executable and libraries

Added to portage

2026-02-17

dune-configurator - 3.19.1-r1
Ebuild name:

dev-ml/dune-configurator-3.19.1-r1

Description

Helper library for gathering system configuration

Added to portage

2026-02-17

dune-configurator - 3.21.1
Ebuild name:

dev-ml/dune-configurator-3.21.1

Description

Helper library for gathering system configuration

Added to portage

2026-02-17

dune-private-libs - 3.19.0-r1
Ebuild name:

dev-ml/dune-private-libs-3.19.0-r1

Description

Private libraries of Dune

Added to portage

2026-02-17

dune-site - 3.19.1-r1
Ebuild name:

dev-ml/dune-site-3.19.1-r1

Description

Embed locations informations inside executable and libraries

Added to portage

2026-02-17

dune-site - 3.21.1
Ebuild name:

dev-ml/dune-site-3.21.1

Description

Embed locations informations inside executable and libraries

Added to portage

2026-02-17

element - 1.12.10
Ebuild name:

www-apps/element-1.12.10

Description

A glossy Matrix collaboration client for the web

Added to portage

2026-02-17

exo - 1.93.0
Ebuild name:

app-admin/exo-1.93.0

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2026-02-17

fakeredis - 2.34.0
Ebuild name:

dev-python/fakeredis-2.34.0

Description

Fake implementation of redis API for testing purposes

Added to portage

2026-02-17

filelock - 3.24.2
Ebuild name:

dev-python/filelock-3.24.2

Description

A platform independent file lock for Python

Added to portage

2026-02-17

firefox - 140.7.1
Ebuild name:

www-client/firefox-140.7.1

Description

Firefox Web Browser

Added to portage

2026-02-17

firefox - 147.0.4
Ebuild name:

www-client/firefox-147.0.4

Description

Firefox Web Browser

Added to portage

2026-02-17

flameshot - 13.3.0
Ebuild name:

media-gfx/flameshot-13.3.0

Description

Powerful yet simple to use screenshot software

Added to portage

2026-02-17

flatdict - 4.1.0
Ebuild name:

dev-python/flatdict-4.1.0

Description

Python module for interacting with nested dicts

Added to portage

2026-02-17

gamescope - 3.16.20
Ebuild name:

gui-wm/gamescope-3.16.20

Description

Efficient micro-compositor for running games

Added to portage

2026-02-17

gawk - 5.3.67
Ebuild name:

sys-apps/gawk-5.3.67

Description

GNU awk pattern-matching language

Added to portage

2026-02-17

genkernel - 4.3.18
Ebuild name:

sys-kernel/genkernel-4.3.18

Description

Gentoo automatic kernel building scripts

Added to portage

2026-02-17

gentoo-kernel - 6.12.73
Ebuild name:

sys-kernel/gentoo-kernel-6.12.73

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-17

gentoo-kernel - 6.18.12
Ebuild name:

sys-kernel/gentoo-kernel-6.18.12

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-17

gentoo-kernel - 6.19.2
Ebuild name:

sys-kernel/gentoo-kernel-6.19.2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-17

gentoo-kernel - 6.6.126
Ebuild name:

sys-kernel/gentoo-kernel-6.6.126

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-17

gentoo-kernel-bin - 6.12.73
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.73

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-17

gentoo-kernel-bin - 6.18.12
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.12

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-17

gentoo-kernel-bin - 6.19.2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.19.2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-17

gentoo-kernel-bin - 6.6.126
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.126

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-17

gentoo-sources - 6.12.73
Ebuild name:

sys-kernel/gentoo-sources-6.12.73

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

gentoo-sources - 6.18.12
Ebuild name:

sys-kernel/gentoo-sources-6.18.12

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

gentoo-sources - 6.19.2
Ebuild name:

sys-kernel/gentoo-sources-6.19.2

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

gentoo-sources - 6.6.126
Ebuild name:

sys-kernel/gentoo-sources-6.6.126

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

glpk - 5.0-r4
Ebuild name:

sci-mathematics/glpk-5.0-r4

Description

GNU Linear Programming Kit

Added to portage

2026-02-17

godot - 4.6.1
Ebuild name:

dev-games/godot-4.6.1

Description

Multi-platform 2D and 3D game engine with a feature-rich editor

Added to portage

2026-02-17

hypothesis - 6.151.9
Ebuild name:

dev-python/hypothesis-6.151.9

Description

A library for property based testing

Added to portage

2026-02-17

ig - 0.49.1
Ebuild name:

app-admin/ig-0.49.1

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-02-17

kdsingleapplication - 1.2.0-r1
Ebuild name:

dev-libs/kdsingleapplication-1.2.0-r1

Description

KDAB's helper class for single-instance policy applications

Added to portage

2026-02-17

libquotient - 0.9.6
Ebuild name:

net-libs/libquotient-0.9.6

Description

Qt-based SDK to develop applications for Matrix

Added to portage

2026-02-17

lilv - 0.24.26-r1
Ebuild name:

media-libs/lilv-0.24.26-r1

Description

Library to make the use of LV2 plugins as simple as possible for applica

Added to portage

2026-02-17

mpmath - 1.4.0_beta4
Ebuild name:

dev-python/mpmath-1.4.0_beta4

Description

Python library for arbitrary-precision floating-point arithmetic

Added to portage

2026-02-17

nextcloud - 31.0.14
Ebuild name:

www-apps/nextcloud-31.0.14

Description

Personal cloud that runs on your own server

Added to portage

2026-02-17

nextcloud - 32.0.6
Ebuild name:

www-apps/nextcloud-32.0.6

Description

Personal cloud that runs on your own server

Added to portage

2026-02-17

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-17

nvidia-drivers - 580.126.18
Ebuild name:

x11-drivers/nvidia-drivers-580.126.18

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-02-17

openpgp-keys-gentoo-developers - 20260216
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20260216

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2026-02-17

openpgp-keys-marcusb - 20260217
Ebuild name:

sec-keys/openpgp-keys-marcusb-20260217

Description

OpenPGP key used by Marcus Butler (marcusb)

Added to portage

2026-02-17

openvas-scanner - 23.40.0
Ebuild name:

net-analyzer/openvas-scanner-23.40.0

Description

Open Vulnerability Assessment Scanner

Added to portage

2026-02-17

perf - 6.19
Ebuild name:

dev-util/perf-6.19

Description

Userland tools for Linux Performance Counters

Added to portage

2026-02-17

plex-media-server - 1.43.0.10492
Ebuild name:

media-tv/plex-media-server-1.43.0.10492

Description

Free media library that is intended for use with a plex cli

Added to portage

2026-02-17

portage - 3.0.77-r3
Ebuild name:

sys-apps/portage-3.0.77-r3

Description

The package management and distribution system for Gentoo

Added to portage

2026-02-17

ppxlib_jane - 0.17.2-r2
Ebuild name:

dev-ml/ppxlib_jane-0.17.2-r2

Description

Utilities for working with Jane Street AST constructs

Added to portage

2026-02-17

ppxlib_jane - 0.17.4-r1
Ebuild name:

dev-ml/ppxlib_jane-0.17.4-r1

Description

Utilities for working with Jane Street AST constructs

Added to portage

2026-02-17

pyarrow - 23.0.1
Ebuild name:

dev-python/pyarrow-23.0.1

Description

Python library for Apache Arrow

Added to portage

2026-02-17

pybind11 - 3.0.2
Ebuild name:

dev-python/pybind11-3.0.2

Description

AST-based Python refactoring library

Added to portage

2026-02-17

pycountry - 26.2.16
Ebuild name:

dev-python/pycountry-26.2.16

Description

Database of countries, subdivisions, languages, currencies and script

Added to portage

2026-02-17

pycurl-requests - 0.5.2
Ebuild name:

dev-python/pycurl-requests-0.5.2

Description

Requests-compatible interface for PycURL

Added to portage

2026-02-17

qt-color-widgets - 3.0.0
Ebuild name:

gui-libs/qt-color-widgets-3.0.0

Description

Qt (C++) widgets to manage color inputs

Added to portage

2026-02-17

qtgui - 5.15.18-r1
Ebuild name:

dev-qt/qtgui-5.15.18-r1

Description

The GUI module and platform plugins for the Qt5 framework

Added to portage

2026-02-17

quixotic - 0.12-r1
Ebuild name:

www-misc/quixotic-0.12-r1

Description

Feed fake content to bots and robots.txt-ignoring LLM scrapers

Added to portage

2026-02-17

record_builder - 0.17.0-r2
Ebuild name:

dev-ml/record_builder-0.17.0-r2

Description

A library which provides traversal of records with an applicative

Added to portage

2026-02-17

redis - 7.2.0
Ebuild name:

dev-python/redis-7.2.0

Description

Python client for Redis key-value store

Added to portage

2026-02-17

rhino - 1.9.1
Ebuild name:

dev-java/rhino-1.9.1

Description

Rhino JavaScript runtime jar, excludes XML, tools, and ScriptEngine wrapper

Added to portage

2026-02-17

sexp_pretty - 0.17.0-r2
Ebuild name:

dev-ml/sexp_pretty-0.17.0-r2

Description

S-expression pretty-printer

Added to portage

2026-02-17

sexplib - 0.17.0-r1
Ebuild name:

dev-ml/sexplib-0.17.0-r1

Description

Library for automated conversion of OCaml-values to and from S-expressions

Added to portage

2026-02-17

sexplib0 - 0.17.0-r2
Ebuild name:

dev-ml/sexplib0-0.17.0-r2

Description

Library for automated conversion of OCaml-values to and from S-expression

Added to portage

2026-02-17

simsimd - 6.5.13
Ebuild name:

dev-python/simsimd-6.5.13

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2026-02-17

sox - 14.4.4.1-r1
Ebuild name:

media-sound/sox-14.4.4.1-r1

Description

The swiss army knife of sound processing programs

Added to portage

2026-02-17

sox - 14.6.0.4-r1
Ebuild name:

media-sound/sox-14.6.0.4-r1

Description

The swiss army knife of sound processing programs

Added to portage

2026-02-17

splittable_random - 0.17.0-r2
Ebuild name:

dev-ml/splittable_random-0.17.0-r2

Description

PRNG that can be split into independent streams

Added to portage

2026-02-17

stdio - 0.17.0-r2
Ebuild name:

dev-ml/stdio-0.17.0-r2

Description

Standard IO Library for OCaml

Added to portage

2026-02-17

tellico - 4.2
Ebuild name:

kde-misc/tellico-4.2

Description

Collection manager based on KDE Frameworks

Added to portage

2026-02-17

textutils - 0.17.0-r1
Ebuild name:

dev-ml/textutils-0.17.0-r1

Description

Text output utilities

Added to portage

2026-02-17

textutils_kernel - 0.17.0-r1
Ebuild name:

dev-ml/textutils_kernel-0.17.0-r1

Description

Text output utilities

Added to portage

2026-02-17

thunderbird - 140.7.2
Ebuild name:

mail-client/thunderbird-140.7.2

Description

Thunderbird Mail Client

Added to portage

2026-02-17

thunderbird - 147.0.2
Ebuild name:

mail-client/thunderbird-147.0.2

Description

Thunderbird Mail Client

Added to portage

2026-02-17

thunderbird-bin - 140.7.2
Ebuild name:

mail-client/thunderbird-bin-140.7.2

Description

Thunderbird Mail Client

Added to portage

2026-02-17

thunderbird-bin - 147.0.2
Ebuild name:

mail-client/thunderbird-bin-147.0.2

Description

Thunderbird Mail Client

Added to portage

2026-02-17

tifffile - 2026.2.16
Ebuild name:

dev-python/tifffile-2026.2.16

Description

Read and write TIFF files

Added to portage

2026-02-17

time_now - 0.17.0-r2
Ebuild name:

dev-ml/time_now-0.17.0-r2

Description

Reports the current time

Added to portage

2026-02-17

timezone - 0.17.0-r1
Ebuild name:

dev-ml/timezone-0.17.0-r1

Description

Time-zone handling for OCaml

Added to portage

2026-02-17

tox - 4.36.1
Ebuild name:

dev-python/tox-4.36.1

Description

virtualenv-based automation of test activities

Added to portage

2026-02-17

typer - 0.24.0
Ebuild name:

dev-python/typer-0.24.0

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-02-17

typerep - 0.17.1-r2
Ebuild name:

dev-ml/typerep-0.17.1-r2

Description

Library for creating runtime representation of OCaml types

Added to portage

2026-02-17

uopt - 0.17.0-r2
Ebuild name:

dev-ml/uopt-0.17.0-r2

Description

An [option]-like type that incurs no allocation

Added to portage

2026-02-17

uv - 0.10.3
Ebuild name:

dev-python/uv-0.10.3

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-02-17

uv-build - 0.10.3
Ebuild name:

dev-python/uv-build-0.10.3

Description

PEP517 uv build backend

Added to portage

2026-02-17

uvicorn - 0.41.0
Ebuild name:

dev-python/uvicorn-0.41.0

Description

Lightning-fast ASGI server implementation

Added to portage

2026-02-17

vanilla-kernel - 6.12.73
Ebuild name:

sys-kernel/vanilla-kernel-6.12.73

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-17

vanilla-kernel - 6.18.12
Ebuild name:

sys-kernel/vanilla-kernel-6.18.12

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-17

vanilla-kernel - 6.19.2
Ebuild name:

sys-kernel/vanilla-kernel-6.19.2

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-17

vanilla-kernel - 6.6.126
Ebuild name:

sys-kernel/vanilla-kernel-6.6.126

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-17

vanilla-sources - 6.12.73
Ebuild name:

sys-kernel/vanilla-sources-6.12.73

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

vanilla-sources - 6.18.12
Ebuild name:

sys-kernel/vanilla-sources-6.18.12

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

vanilla-sources - 6.19.2
Ebuild name:

sys-kernel/vanilla-sources-6.19.2

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

vanilla-sources - 6.6.126
Ebuild name:

sys-kernel/vanilla-sources-6.6.126

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

variantslib - 0.17.0-r2
Ebuild name:

dev-ml/variantslib-0.17.0-r2

Description

OCaml variants as first class values

Added to portage

2026-02-17

varnish - 8.0.0-r1
Ebuild name:

www-servers/varnish-8.0.0-r1

Description

Varnish is a state-of-the-art, high-performance HTTP accelerator

Added to portage

2026-02-17

virtualenv - 20.37.0
Ebuild name:

dev-python/virtualenv-20.37.0

Description

Virtual Python Environment builder

Added to portage

2026-02-17

vivaldi - 7.8.3925.66
Ebuild name:

www-client/vivaldi-7.8.3925.66

Description

A browser for our friends

Added to portage

2026-02-17

vivaldi-snapshot - 7.9.3950.5
Ebuild name:

www-client/vivaldi-snapshot-7.9.3950.5

Description

A browser for our friends

Added to portage

2026-02-17

xdg - 3.21.1
Ebuild name:

dev-ml/xdg-3.21.1

Description

XDG Base Directory Specification

Added to portage

2026-02-17

xterm - 407
Ebuild name:

x11-terms/xterm-407

Description

Terminal Emulator for X Windows

Added to portage

2026-02-17

zlib - 1.3.2
Ebuild name:

sys-libs/zlib-1.3.2

Description

Standard (de)compression library

Added to portage

2026-02-17

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 61.5 ms